home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 April: Mac OS SDK / Dev.CD Apr 98 SDK1.toast / Development Kits (Disc 1) / Interfaces&Libraries / Universal / Interfaces / AIncludes / Memory.a < prev    next >
Encoding:
Text File  |  1998-02-12  |  1.2 KB  |  47 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        Memory.a
  3. ;
  4. ;    Contains:    Memory Manager Interfaces.
  5. ;
  6. ;    Version:    Technology:    System 7.5
  7. ;                Release:    Universal Interfaces 3.1
  8. ;
  9. ;    Copyright:    © 1985-1998 by Apple Computer, Inc., all rights reserved
  10. ;
  11. ;    Bugs?:        Please include the the file and version information (from above) with
  12. ;                the problem description.  Developers belonging to one of the Apple
  13. ;                developer programs can submit bug reports to:
  14. ;
  15. ;                    devsupport@apple.com
  16. ;
  17. ;
  18. ;    NOTE
  19. ;    
  20. ;    The file "Memory.h" has been renamed to "MacMemory.h" to prevent a collision
  21. ;    with the "Memory.h" available on other platforms.  MacOS only developers may 
  22. ;    continue to use #include <Memory.h>.  Developers doing cross-platform work where 
  23. ;    Memory.h also exists should change their sources to use #include <MacMemory.h>
  24. ;
  25.  
  26.     IF &TYPE('__MEMORY__') = 'UNDEFINED' THEN
  27. __MEMORY__ SET 1
  28.  
  29.     IF &TYPE('__CONDITIONALMACROS__') = 'UNDEFINED' THEN
  30.     include 'ConditionalMacros.a'
  31.     ENDIF
  32.  
  33.     IF TARGET_OS_MAC THEN
  34.     IF &TYPE('__MACMEMORY__') = 'UNDEFINED' THEN
  35.     include 'MacMemory.a'
  36.     ENDIF
  37.     ELSE
  38. ;    If you get here, your development environment is messed up.
  39. ;    This file is for MacOS development only.
  40. ;
  41.  
  42.     ENDIF    ; TARGET_OS_MAC
  43.     ENDIF ; __MEMORY__ 
  44.  
  45.